home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / jpegsrc4.zip / USAGE < prev   
Text File  |  1992-11-16  |  15KB  |  303 lines

  1. USAGE instructions for the Independent JPEG Group's JPEG software
  2. =================================================================
  3.  
  4. INTRODUCTION
  5.  
  6. This distribution contains software to implement JPEG image compression and
  7. decompression.  JPEG (pronounced "jay-peg") is a standardized compression
  8. method for full-color and gray-scale images.  JPEG is designed to handle
  9. "real-world" scenes, for example scanned photographs.  Cartoons, line
  10. drawings, and other non-realistic images are not JPEG's strong suit; on this
  11. sort of material you may get poor image quality and/or little compression.
  12.  
  13. JPEG is lossy, meaning that the output image is not necessarily identical to
  14. the input image.  Hence you should not use JPEG if you have to have identical
  15. output bits.  However, on typical real-world images, very good compression
  16. levels can be obtained with no visible change, and amazingly high compression
  17. is possible if you can tolerate a low-quality image.  You can trade off image
  18. quality against file size by adjusting the compressor's "quality" setting.
  19.  
  20. This file describes usage of the standard programs "cjpeg" and "djpeg" that
  21. can be built directly from the distributed C code.  See the README file for
  22. hints on incorporating the JPEG software into other programs.
  23.  
  24. If you are on a Unix machine you may prefer to read the Unix-style manual
  25. pages in files cjpeg.1 and djpeg.1.  But also see the HINTS section below,
  26. which is not present in either manual page.
  27.  
  28. NOTE: the switch syntax has been redesigned since the v3 release of
  29. cjpeg/djpeg.  Switch names are now words instead of single letters.
  30.  
  31.  
  32. GENERAL USAGE
  33.  
  34. We provide two programs, cjpeg to compress an image file into JPEG format,
  35. and djpeg to decompress a JPEG file back into a conventional image format.
  36.  
  37. On Unix-like systems, you say:
  38.     cjpeg [switches] [imagefile] >jpegfile
  39. or
  40.     djpeg [switches] [jpegfile]  >imagefile
  41. The programs read the specified input file, or standard input if none is
  42. named.  They always write to standard output (with trace/error messages to
  43. standard error).  These conventions are handy for piping images between
  44. programs.
  45.  
  46. On most non-Unix systems, you say:
  47.     cjpeg [switches] imagefile jpegfile
  48. or
  49.     djpeg [switches] jpegfile  imagefile
  50. i.e., both the input and output files are named on the command line.  This
  51. style is a little more foolproof, and it loses no functionality if you don't
  52. have pipes.  (You can get this style on Unix too, if you prefer, by defining
  53. TWO_FILE_COMMANDLINE when you compile the programs; see SETUP.)
  54.  
  55. The currently supported image file formats are: PPM (PBMPLUS color format),
  56. PGM (PBMPLUS gray-scale format), GIF, Targa, and RLE (Utah Raster Toolkit
  57. format).  (RLE is supported only if the URT library is available.)
  58. cjpeg recognizes the input image format automatically, with the exception
  59. of some Targa-format files.  You have to tell djpeg which format to generate.
  60.  
  61. The only JPEG file format currently supported is the JFIF format.  Support for
  62. the TIFF 6.0 JPEG format will probably be added at some future date.
  63.  
  64. All switch names may be abbreviated; for example, -grayscale may be written
  65. -gray or -gr.  Most of the "basic" switches can be abbreviated to as little as
  66. one letter.  Upper and lower case are equivalent (-GIF is the same as -gif).
  67. British spellings are also accepted (e.g., -greyscale), though for brevity
  68. these are not mentioned below.
  69.  
  70.  
  71. CJPEG DETAILS
  72.  
  73. The basic command line switches for cjpeg are:
  74.  
  75.     -quality N    Scale quantization tables to adjust image quality.
  76.             Quality is 0 (worst) to 100 (best); default is 75.
  77.             (See below for more info.)
  78.  
  79.     -grayscale    Create monochrome JPEG file from color input.
  80.             Be sure to use this switch when compressing a grayscale
  81.             GIF file, because cjpeg isn't bright enough to notice
  82.             whether a GIF file uses only shades of gray.  By
  83.             saying -grayscale, you'll get a smaller JPEG file that
  84.             takes less time to process.
  85.  
  86.     -optimize    Perform optimization of entropy encoding parameters.
  87.             Without this, default encoding parameters are used.
  88.             -optimize usually makes the JPEG file a little smaller,
  89.             but cjpeg runs somewhat slower and needs much more
  90.             memory.  Image quality and speed of decompression are
  91.             unaffected by -optimize.
  92.  
  93.     -targa        Input file is Targa format.  Targa files that contain
  94.             an "identification" field will not be automatically
  95.             recognized by cjpeg; for such files you must specify
  96.             -targa to make cjpeg treat the input as Targa format.
  97.  
  98. The -quality switch lets you trade off compressed file size against quality of
  99. the reconstructed image: the higher the quality setting, the larger the JPEG
  100. file, and the closer the output image will be to the original input.  Normally
  101. you want to use the lowest quality setting (smallest file) that decompresses
  102. into something visually indistinguishable from the original image.  For this
  103. purpose the quality setting should be between 50 and 95; the default of 75 is
  104. often about right.  If you see defects at -quality 75, then go up 5 or 10
  105. counts at a time until you are happy with the output image.  (The optimal
  106. setting will vary from one image to another.)
  107.  
  108. -quality 100 will generate a quantization table of all 1's, eliminating loss
  109. in the quantization step (but there is still information loss in subsampling,
  110. as well as roundoff error).  This setting is mainly of interest for
  111. experimental purposes.  Quality values above about 95 are NOT recommended for
  112. normal use; the compressed file size goes up dramatically for hardly any gain
  113. in output image quality.
  114.  
  115. In the other direction, quality values below 50 will produce very small files
  116. of low image quality.  Settings around 5 to 10 might be useful in preparing an
  117. index of a large image library, for example.  Try -quality 2 (or so) for some
  118. amusing Cubist effects.  (Note: quality values below about 25 generate 2-byte
  119. quantization tables, which are considered optional in the JPEG standard.
  120. cjpeg emits a warning message when you give such a quality value, because
  121. some commercial JPEG programs may be unable to decode the resulting file.)
  122.  
  123. Switches for advanced users:
  124.  
  125.     -maxmemory N    Set limit for amount of memory to use in processing
  126.             large images.  Value is in thousands of bytes, or
  127.             millions of bytes if "M" is attached to the number.
  128.             For example, -max 4m selects 4000000 bytes.  If more
  129.             space is needed, temporary files will be used.
  130.  
  131.     -restart N    Emit a JPEG restart marker every N MCU rows, or every
  132.             N MCU blocks if "B" is attached to the number.
  133.             -restart 0 (the default) means no restart markers.
  134.  
  135.     -smooth N    Smooth the input image to eliminate dithering noise.
  136.             N, ranging from 1 to 100, indicates the strength of
  137.             smoothing.  0 (the default) means no smoothing.
  138.  
  139.     -verbose    Enable debug printout.  More -v's give more printout.
  140.     or  -debug    Also, version information is printed at startup.
  141.  
  142. The -restart option inserts extra markers that allow a JPEG decoder to
  143. resynchronize after a transmission error.  Without restart markers, any damage
  144. to a compressed file will usually ruin the image from the point of the error
  145. to the end of the image; with restart markers, the damage is usually confined
  146. to the portion of the image up to the next restart marker.  Of course, the
  147. restart markers occupy extra space.  We recommend -restart 1 for images that
  148. will be transmitted across unreliable networks such as Usenet.
  149.  
  150. The -smooth option filters the input to eliminate fine-scale noise.  This is
  151. often useful when converting GIF files to JPEG: a moderate smoothing factor of
  152. 10 to 50 gets rid of dithering patterns in the input file, resulting in a
  153. smaller JPEG file and a better-looking image.  Too large a smoothing factor
  154. will visibly blur the image, however.
  155.  
  156. Switches for wizards:
  157.  
  158.     -arithmetic    Use arithmetic coding rather than Huffman coding.
  159.             (Not currently supported for legal reasons.)
  160.  
  161.     -nointerleave    Generate noninterleaved JPEG file (not yet supported).
  162.  
  163.     -qtables file    Use the quantization tables given in the specified
  164.             file.  The file should contain one to four tables